home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DYNAB.PAK / ENROLDOC.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  76 lines

  1. // enroldoc.cpp : implementation of the CEnrollDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "enroll.h"
  15. #include "sectset.h"
  16. #include "coursset.h"
  17. #include "enroldoc.h"
  18.  
  19. #ifdef _DEBUG
  20. #undef THIS_FILE
  21. static char BASED_CODE THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CEnrollDoc
  26.  
  27. IMPLEMENT_DYNCREATE(CEnrollDoc, CDocument)
  28.  
  29. BEGIN_MESSAGE_MAP(CEnrollDoc, CDocument)
  30.     //{{AFX_MSG_MAP(CEnrollDoc)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code!
  33.     //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CEnrollDoc construction/destruction
  38.  
  39. CEnrollDoc::CEnrollDoc()
  40. {
  41.     // TODO: add one-time construction code here
  42. }
  43.  
  44. CEnrollDoc::~CEnrollDoc()
  45. {
  46. }
  47.  
  48. BOOL CEnrollDoc::OnNewDocument()
  49. {
  50.     if (!CDocument::OnNewDocument())
  51.         return FALSE;
  52.  
  53.     // TODO: add reinitialization code here
  54.     // (SDI documents will reuse this document)
  55.  
  56.     return TRUE;
  57. }
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CEnrollDoc diagnostics
  61.  
  62. #ifdef _DEBUG
  63. void CEnrollDoc::AssertValid() const
  64. {
  65.     CDocument::AssertValid();
  66. }
  67.  
  68. void CEnrollDoc::Dump(CDumpContext& dc) const
  69. {
  70.     CDocument::Dump(dc);
  71. }
  72. #endif //_DEBUG
  73.  
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CEnrollDoc commands
  76.